[INFO] fetching crate error_snippet 0.2.0...
[INFO] testing error_snippet-0.2.0 against master#cced03bfd61a304243a34504618ecec86c17063f for pr-154065-2
[INFO] extracting crate error_snippet 0.2.0 into /workspace/builds/worker-5-tc1/source
[INFO] started tweaking crates.io crate error_snippet 0.2.0
[INFO] removed 0 missing examples
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate error_snippet 0.2.0
[INFO] tweaked toml for crates.io crate error_snippet 0.2.0 written to /workspace/builds/worker-5-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate error_snippet 0.2.0 on toolchain cced03bfd61a304243a34504618ecec86c17063f
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate error_snippet 0.2.0 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]  Downloading crates ...
[INFO] [stderr]   Downloaded owo-colors v4.2.0
[INFO] [stderr]   Downloaded insta v1.43.1
[INFO] [stderr]   Downloaded trybuild v1.0.104
[INFO] [stderr]   Downloaded terminal_size v0.4.2
[INFO] [stderr]   Downloaded error_snippet_derive v0.1.10
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1
[INFO] running `Command { std: "docker" "start" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1" "/opt/rustwide/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1" "/opt/rustwide/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling libc v0.2.172
[INFO] [stderr]    Compiling is_ci v1.2.0
[INFO] [stderr]    Compiling owo-colors v4.2.0
[INFO] [stderr]    Compiling hashbrown v0.15.3
[INFO] [stderr]    Compiling quote v1.0.35
[INFO] [stderr]    Compiling supports-color v3.0.2
[INFO] [stderr]    Compiling syn v2.0.87
[INFO] [stderr]    Compiling indexmap v2.9.0
[INFO] [stderr]    Compiling is-terminal v0.4.16
[INFO] [stderr]    Compiling supports-color v2.1.0
[INFO] [stderr]    Compiling error_snippet_derive v0.1.10
[INFO] [stderr]    Compiling error_snippet v0.2.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around closure body
[INFO] [stdout]     --> src/render/graphical.rs:1350:72
[INFO] [stdout]      |
[INFO] [stdout] 1350 |     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout]      |                                                                        ^                   ^
[INFO] [stdout]      |
[INFO] [stdout]      = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]      |
[INFO] [stdout] 1350 -     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout] 1350 +     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| i..i + c.len_utf8() ) else {
[INFO] [stdout]      |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 6.43s
[INFO] running `Command { std: "docker" "inspect" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1" "/opt/rustwide/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling serde v1.0.219
[INFO] [stderr]    Compiling toml_write v0.1.1
[INFO] [stderr]    Compiling winnow v0.7.10
[INFO] [stderr]    Compiling target-triple v0.1.4
[INFO] [stderr]    Compiling serde_json v1.0.140
[INFO] [stderr]    Compiling glob v0.3.2
[INFO] [stderr]    Compiling similar v2.7.0
[INFO] [stdout] warning: unnecessary parentheses around closure body
[INFO] [stdout]     --> src/render/graphical.rs:1350:72
[INFO] [stdout]      |
[INFO] [stdout] 1350 |     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout]      |                                                                        ^                   ^
[INFO] [stdout]      |
[INFO] [stdout]      = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]      |
[INFO] [stdout] 1350 -     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout] 1350 +     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| i..i + c.len_utf8() ) else {
[INFO] [stdout]      |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling console v0.15.11
[INFO] [stderr]    Compiling serde_derive v1.0.219
[INFO] [stderr]    Compiling insta v1.43.1
[INFO] [stderr]    Compiling serde_spanned v0.6.8
[INFO] [stderr]    Compiling toml_datetime v0.6.9
[INFO] [stderr]    Compiling toml_edit v0.22.26
[INFO] [stderr]    Compiling toml v0.8.22
[INFO] [stderr]    Compiling trybuild v1.0.104
[INFO] [stderr]    Compiling error_snippet v0.2.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around closure body
[INFO] [stdout]     --> src/render/graphical.rs:1350:72
[INFO] [stdout]      |
[INFO] [stdout] 1350 |     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout]      |                                                                        ^                   ^
[INFO] [stdout]      |
[INFO] [stdout]      = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]      |
[INFO] [stdout] 1350 -     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout] 1350 +     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| i..i + c.len_utf8() ) else {
[INFO] [stdout]      |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 17.81s
[INFO] running `Command { std: "docker" "inspect" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1" "/opt/rustwide/cargo-home/bin/cargo" "+cced03bfd61a304243a34504618ecec86c17063f" "test" "--frozen", kill_on_drop: false }`
[INFO] [stderr] warning: unnecessary parentheses around closure body
[INFO] [stdout] 
[INFO] [stderr]     --> src/render/graphical.rs:1350:72
[INFO] [stdout] running 12 tests
[INFO] [stderr]      |
[INFO] [stdout] test render::graphical::coords_of_idx_tests::test_index_at_end_boundary ... ok
[INFO] [stderr] 1350 |     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout] test render::graphical::coords_of_idx_tests::test_index_out_of_range ... ok
[INFO] [stderr]      |                                                                        ^                   ^
[INFO] [stdout] test render::graphical::coords_of_idx_tests::test_multiline_line_boundary_end ... ok
[INFO] [stderr]      |
[INFO] [stdout] test render::graphical::coords_of_idx_tests::test_multiline_line_boundary_start ... ok
[INFO] [stderr]      = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_at_beginning_boundary ... ok
[INFO] [stderr] help: remove these parentheses
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_at_ending_boundary ... ok
[INFO] [stderr]      |
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_at_line_start ... ok
[INFO] [stderr] 1350 -     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_first_line ... ok
[INFO] [stderr] 1350 +     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| i..i + c.len_utf8() ) else {
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_last_line ... ok
[INFO] [stderr]      |
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_with_context ... ok
[INFO] [stderr] 
[INFO] [stdout] test render::graphical::extract_with_context_offset_tests::test_extract_without_context ... ok
[INFO] [stderr] warning: `error_snippet` (lib) generated 1 warning (run `cargo fix --lib -p error_snippet` to apply 1 suggestion)
[INFO] [stderr] warning: `error_snippet` (lib test) generated 1 warning (1 duplicate)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.10s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/error_snippet-71f989c82596f21d)
[INFO] [stdout] test render::graphical::coords_of_idx_tests::test_multiline ... ok
[INFO] [stderr]      Running tests/handler.rs (/opt/rustwide/target/debug/deps/handler-139d62982c3c0ce5)
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test drain_removes_all ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/tests.rs (/opt/rustwide/target/debug/deps/tests-649cc7ce64bfe2f3)
[INFO] [stdout] 
[INFO] [stdout] running 65 tests
[INFO] [stdout] test derive::cause::multiple_causes ... ok
[INFO] [stdout] test derive::cause::single_cause ... ok
[INFO] [stdout] test derive::label::single_label ... ok
[INFO] [stdout] test derive::message::formatted_message_debug ... ok
[INFO] [stdout] test derive::message::formatted_message_debug_pretty ... ok
[INFO] [stdout] test derive::message::formatted_message ... ok
[INFO] [stdout] test derive::cause::cause_with_source ... ok
[INFO] [stdout] test derive::cause::sourced_error_with_cause ... ok
[INFO] [stdout] test derive::code::simple_code ... ok
[INFO] [stdout] test derive::code::complex ... ok
[INFO] [stdout] test derive::related::multiple_related ... ok
[INFO] [stdout] test derive::label::label_string_source ... ok
[INFO] [stdout] test derive::code::unformatted ... ok
[INFO] [stdout] test derive::message::multiple_formatted_message ... ok
[INFO] [stdout] test derive::message::only_message ... ok
[INFO] [stdout] test derive::related::multiple_related_with_source ... ok
[INFO] [stdout] test derive::label::labels_delayed_source ... ok
[INFO] [stdout] test derive::label::multiple_labels ... ok
[INFO] [stdout] test derive::label::label_fmt_debug ... ok
[INFO] [stdout] test derive::severity::note ... ok
[INFO] [stdout] test derive::related::sourced_error_with_related ... ok
[INFO] [stdout] test derive::cause::multiple_causes_with_source ... ok
[INFO] [stdout] test derive::related::related_with_source ... ok
[INFO] [stdout] test derive::severity::warning ... ok
[INFO] [stdout] test derive::related::single_related ... ok
[INFO] [stdout] test derive::severity::help ... ok
[INFO] [stdout] test derive::severity::info ... ok
[INFO] [stdout] test derive::help::single_line ... ok
[INFO] [stdout] test derive::severity::error ... ok
[INFO] [stdout] test derive::label::label_fmt ... ok
[INFO] [stdout] test renderer::graphical::with_code ... ok
[INFO] [stdout] test renderer::graphical::with_help_single ... ok
[INFO] [stdout] test derive::help::multiple_helps ... ok
[INFO] [stdout] test renderer::graphical::with_help_suggestion_delete ... ok
[INFO] [stdout] test renderer::graphical::with_help_multiple ... ok
[INFO] [stdout] test renderer::graphical::with_help_suggestion_replace ... ok
[INFO] [stdout] test renderer::graphical::with_help_suggestion_insert ... ok
[INFO] [stdout] test derive::help::multiple_lines ... ok
[INFO] [stdout] test renderer::graphical::with_help_suggestion_different_lines ... ok
[INFO] [stdout] test renderer::graphical::only_message ... ok
[INFO] [stdout] test renderer::graphical::with_label_severity_warning ... ok
[INFO] [stdout] test renderer::graphical::with_label_multiple ... ok
[INFO] [stdout] test renderer::graphical::with_label_severity_error ... ok
[INFO] [stdout] test renderer::graphical::with_label_different_files ... ok
[INFO] [stdout] test renderer::graphical::with_label_severity_help ... ok
[INFO] [stdout] test renderer::graphical::with_label_severity_note ... ok
[INFO] [stdout] test renderer::graphical::with_help_suggestion_multiple ... ok
[INFO] [stdout] test renderer::graphical::with_label_single ... ok
[INFO] [stdout] test renderer::graphical::with_label_severity_info ... ok
[INFO] [stdout] test renderer::graphical::with_help_newlines ... ok
[INFO] [stdout] test renderer::graphical::with_related_labelled ... ok
[INFO] [stdout] test renderer::graphical::with_related_nested ... ok
[INFO] [stdout] test renderer::graphical::with_related_labelled_multiple ... ok
[INFO] [stdout] test renderer::invalid::label_range_outside_range ... ok
[INFO] [stdout] test renderer::graphical::with_related_single ... ok
[INFO] [stdout] test renderer::graphical::with_severity_info ... ok
[INFO] [stdout] test renderer::graphical::with_severity_help ... ok
[INFO] [stdout] test renderer::graphical::with_severity_note ... ok
[INFO] [stdout] test renderer::graphical::with_unnamed_source ... ok
[INFO] [stdout] test renderer::graphical::with_severity_warning ... ok
[INFO] [stdout] test renderer::invalid::label_end_outside_range ... ok
[INFO] [stdout] test renderer::invalid::label_range_negative_length ... ok
[INFO] [stdout] test renderer::graphical::with_severity_error ... ok
[INFO] [stdout] test renderer::graphical::with_related_multiple ... ok
[INFO] [stderr]    Compiling libc v0.2.172
[INFO] [stderr]    Compiling proc-macro2 v1.0.95
[INFO] [stderr]    Compiling unicode-ident v1.0.18
[INFO] [stderr]     Checking is_ci v1.2.0
[INFO] [stderr]    Compiling owo-colors v4.2.0
[INFO] [stderr]     Checking once_cell v1.21.3
[INFO] [stderr]     Checking equivalent v1.0.2
[INFO] [stderr]     Checking hashbrown v0.15.3
[INFO] [stderr]     Checking similar v2.7.0
[INFO] [stderr]     Checking supports-color v3.0.2
[INFO] [stderr]     Checking indexmap v2.9.0
[INFO] [stderr]    Compiling quote v1.0.35
[INFO] [stderr]     Checking is-terminal v0.4.16
[INFO] [stderr]     Checking console v0.15.11
[INFO] [stderr]    Compiling syn v2.0.87
[INFO] [stderr]     Checking supports-color v2.1.0
[INFO] [stderr]     Checking insta v1.43.1
[INFO] [stderr]    Compiling error_snippet_derive v0.1.10
[INFO] [stderr]     Checking error_snippet v0.2.0 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unnecessary parentheses around closure body
[INFO] [stderr]     --> /opt/rustwide/workdir/src/render/graphical.rs:1350:72
[INFO] [stderr]      |
[INFO] [stderr] 1350 |     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stderr]      |                                                                        ^                   ^
[INFO] [stderr]      |
[INFO] [stderr]      = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr]      |
[INFO] [stderr] 1350 -     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| (i..i + c.len_utf8())) else {
[INFO] [stderr] 1350 +     let Some(char_range) = str.char_indices().nth(offset).map(|(i, c)| i..i + c.len_utf8() ) else {
[INFO] [stderr]      |
[INFO] [stderr] 
[INFO] [stderr] warning: `error_snippet` (lib) generated 1 warning (run `cargo fix --lib -p error_snippet` to apply 1 suggestion)
[INFO] [stderr]     Checking error_snippet-tests v0.0.0 (/opt/rustwide/target/tests/trybuild/error_snippet)
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 6.41s
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stderr] test tests/derive/ui/code_non_quoted.rs ... ok
[INFO] [stderr] test tests/derive/ui/code_parenthesis.rs ... ok
[INFO] [stderr] test tests/derive/ui/severity_invalid_name.rs ... mismatch
[INFO] [stderr] 
[INFO] [stderr] EXPECTED:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0599]: no variant or associated item named `Bug` found for enum `Severity` in the current scope
[INFO] [stderr]  --> tests/derive/ui/severity_invalid_name.rs:4:48
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[diagnostic(message = "some help", severity = Bug)]
[INFO] [stderr]   |                                                ^^^ variant or associated item not found in `Severity`
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] 
[INFO] [stderr] ACTUAL OUTPUT:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0599]: no variant, associated function, or constant named `Bug` found for enum `Severity` in the current scope
[INFO] [stderr]  --> tests/derive/ui/severity_invalid_name.rs:4:48
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[diagnostic(message = "some help", severity = Bug)]
[INFO] [stderr]   |                                                ^^^ variant, associated function, or constant not found in `Severity`
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] note: If the actual output is the correct output you can bless it by rerunning
[INFO] [stderr]       your test with the environment variable TRYBUILD=overwrite
[INFO] [stderr] 
[INFO] [stderr] test tests/derive/ui/severity_parenthesis.rs ... ok
[INFO] [stderr] test tests/derive/ui/severity_quote.rs ... ok
[INFO] [stderr] test tests/derive/ui/severity_wrong_case.rs ... mismatch
[INFO] [stderr] 
[INFO] [stderr] EXPECTED:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0599]: no variant or associated item named `help` found for enum `Severity` in the current scope
[INFO] [stderr]  --> tests/derive/ui/severity_wrong_case.rs:4:48
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[diagnostic(message = "some help", severity = help)]
[INFO] [stderr]   |                                                ^^^^ variant or associated item not found in `Severity`
[INFO] [stderr]   |
[INFO] [stderr] help: there is a variant with a similar name
[INFO] [stderr]   |
[INFO] [stderr] 4 - #[diagnostic(message = "some help", severity = help)]
[INFO] [stderr] 4 + #[diagnostic(message = "some help", severity = Help)]
[INFO] [stderr]   |
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] 
[INFO] [stderr] ACTUAL OUTPUT:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0599]: no variant, associated function, or constant named `help` found for enum `Severity` in the current scope
[INFO] [stderr]  --> tests/derive/ui/severity_wrong_case.rs:4:48
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[diagnostic(message = "some help", severity = help)]
[INFO] [stderr]   |                                                ^^^^ variant, associated function, or constant not found in `Severity`
[INFO] [stderr]   |
[INFO] [stderr] help: there is a variant with a similar name
[INFO] [stderr]   |
[INFO] [stderr] 4 - #[diagnostic(message = "some help", severity = help)]
[INFO] [stderr] 4 + #[diagnostic(message = "some help", severity = Help)]
[INFO] [stderr]   |
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] note: If the actual output is the correct output you can bless it by rerunning
[INFO] [stderr]       your test with the environment variable TRYBUILD=overwrite
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stdout] test derive::ui ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- derive::ui stdout ----
[INFO] [stdout] 
[INFO] [stdout] thread 'derive::ui' (898) panicked at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.104/src/run.rs:102:13:
[INFO] [stdout] 2 of 6 tests failed
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x585bcce5fdf8 - std[929523f510218772]::backtrace_rs::backtrace::libunwind::trace
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x585bcce5fdf8 - std[929523f510218772]::backtrace_rs::backtrace::trace_unsynchronized::<std[929523f510218772]::sys::backtrace::_print_fmt::{closure#1}>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x585bcce5fdf8 - std[929523f510218772]::sys::backtrace::_print_fmt
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/backtrace.rs:74:9
[INFO] [stdout]    3:     0x585bcce5fdf8 - <<std[929523f510218772]::sys::backtrace::BacktraceLock>::print::DisplayBacktrace as core[28b146924c2f19c6]::fmt::Display>::fmt
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/backtrace.rs:44:26
[INFO] [stdout]    4:     0x585bcce7826a - <core[28b146924c2f19c6]::fmt::rt::Argument>::fmt
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/fmt/rt.rs:152:76
[INFO] [stdout]    5:     0x585bcce7826a - core[28b146924c2f19c6]::fmt::write
[INFO] [stdout]    6:     0x585bcce64d42 - std[929523f510218772]::io::default_write_fmt::<alloc[95e62e727ddf147d]::vec::Vec<u8>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/io/mod.rs:622:11
[INFO] [stdout]    7:     0x585bcce64d42 - <alloc[95e62e727ddf147d]::vec::Vec<u8> as std[929523f510218772]::io::Write>::write_fmt
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/io/mod.rs:1977:13
[INFO] [stdout]    8:     0x585bcce3abd6 - <std[929523f510218772]::sys::backtrace::BacktraceLock>::print
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/backtrace.rs:47:9
[INFO] [stdout]    9:     0x585bcce3abd6 - std[929523f510218772]::panicking::default_hook::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:292:27
[INFO] [stdout]   10:     0x585bcce56779 - std[929523f510218772]::panicking::default_hook
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:316:9
[INFO] [stdout]   11:     0x585bccc7772c - <alloc[95e62e727ddf147d]::boxed::Box<dyn for<'a, 'b> core[28b146924c2f19c6]::ops::function::Fn<(&'a std[929523f510218772]::panic::PanicHookInfo<'b>,), Output = ()> + core[28b146924c2f19c6]::marker::Sync + core[28b146924c2f19c6]::marker::Send> as core[28b146924c2f19c6]::ops::function::Fn<(&std[929523f510218772]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/alloc/src/boxed.rs:2291:9
[INFO] [stdout]   12:     0x585bccc7772c - test[6ec0502068880816]::test_main_inner::<test[6ec0502068880816]::test_main_static::{closure#0}>::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:155:21
[INFO] [stdout]   13:     0x585bcce56932 - <alloc[95e62e727ddf147d]::boxed::Box<dyn for<'a, 'b> core[28b146924c2f19c6]::ops::function::Fn<(&'a std[929523f510218772]::panic::PanicHookInfo<'b>,), Output = ()> + core[28b146924c2f19c6]::marker::Sync + core[28b146924c2f19c6]::marker::Send> as core[28b146924c2f19c6]::ops::function::Fn<(&std[929523f510218772]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/alloc/src/boxed.rs:2291:9
[INFO] [stdout]   14:     0x585bcce56932 - std[929523f510218772]::panicking::panic_with_hook
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:833:13
[INFO] [stdout]   15:     0x585bcce3ac92 - std[929523f510218772]::panicking::panic_handler::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:698:13
[INFO] [stdout]   16:     0x585bcce2fa69 - std[929523f510218772]::sys::backtrace::__rust_end_short_backtrace::<std[929523f510218772]::panicking::panic_handler::{closure#0}, !>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/backtrace.rs:182:18
[INFO] [stdout]   17:     0x585bcce3ba4d - __rustc[acf6043c977865fb]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:689:5
[INFO] [stdout]   18:     0x585bcce78a2c - core[28b146924c2f19c6]::panicking::panic_fmt
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/panicking.rs:80:14
[INFO] [stdout]   19:     0x585bccac4b64 - <trybuild[7e0d0504fe932b7d]::Runner>::run
[INFO] [stdout]                                at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.104/src/run.rs:102:13
[INFO] [stdout]   20:     0x585bccace1e8 - <trybuild[7e0d0504fe932b7d]::TestCases as core[28b146924c2f19c6]::ops::drop::Drop>::drop
[INFO] [stdout]                                at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.104/src/lib.rs:341:38
[INFO] [stdout]   21:     0x585bcc999257 - core[28b146924c2f19c6]::ptr::drop_glue::<trybuild[7e0d0504fe932b7d]::TestCases>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/ptr/mod.rs:825:1
[INFO] [stdout]   22:     0x585bcc9c2853 - tests[c9b4a8722ae695]::derive::ui
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/derive/mod.rs:13:1
[INFO] [stdout]   23:     0x585bcc9c1c57 - tests[c9b4a8722ae695]::derive::ui::{closure#0}
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/derive/mod.rs:10:8
[INFO] [stdout]   24:     0x585bcc9a0896 - <tests[c9b4a8722ae695]::derive::ui::{closure#0} as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   25:     0x585bccc6a80b - <fn() -> core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String> as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   26:     0x585bccc6a80b - test[6ec0502068880816]::__rust_begin_short_backtrace::<core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String>, fn() -> core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:724:18
[INFO] [stdout]   27:     0x585bccc78085 - test[6ec0502068880816]::run_test_in_process::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:747:74
[INFO] [stdout]   28:     0x585bccc78085 - <core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<test[6ec0502068880816]::run_test_in_process::{closure#0}> as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   29:     0x585bccc78085 - std[929523f510218772]::panicking::catch_unwind::do_call::<core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<test[6ec0502068880816]::run_test_in_process::{closure#0}>, core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:581:40
[INFO] [stdout]   30:     0x585bccc78085 - std[929523f510218772]::panicking::catch_unwind::<core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String>, core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<test[6ec0502068880816]::run_test_in_process::{closure#0}>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:544:19
[INFO] [stdout]   31:     0x585bccc78085 - std[929523f510218772]::panic::catch_unwind::<core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<test[6ec0502068880816]::run_test_in_process::{closure#0}>, core[28b146924c2f19c6]::result::Result<(), alloc[95e62e727ddf147d]::string::String>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panic.rs:359:14
[INFO] [stdout]   32:     0x585bccc78085 - test[6ec0502068880816]::run_test_in_process
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:747:27
[INFO] [stdout]   33:     0x585bccc78085 - test[6ec0502068880816]::run_test::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:668:43
[INFO] [stdout]   34:     0x585bccc72be4 - test[6ec0502068880816]::run_test::{closure#1}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/test/src/lib.rs:698:41
[INFO] [stdout]   35:     0x585bccc72be4 - std[929523f510218772]::sys::backtrace::__rust_begin_short_backtrace::<test[6ec0502068880816]::run_test::{closure#1}, ()>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/backtrace.rs:166:18
[INFO] [stdout]   36:     0x585bccc7b102 - std[929523f510218772]::thread::lifecycle::spawn_unchecked::<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/thread/lifecycle.rs:70:13
[INFO] [stdout]   37:     0x585bccc7b102 - <core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<std[929523f510218772]::thread::lifecycle::spawn_unchecked<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}> as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   38:     0x585bccc7b102 - std[929523f510218772]::panicking::catch_unwind::do_call::<core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<std[929523f510218772]::thread::lifecycle::spawn_unchecked<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:581:40
[INFO] [stdout]   39:     0x585bccc7b102 - std[929523f510218772]::panicking::catch_unwind::<(), core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<std[929523f510218772]::thread::lifecycle::spawn_unchecked<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panicking.rs:544:19
[INFO] [stdout]   40:     0x585bccc7b102 - std[929523f510218772]::panic::catch_unwind::<core[28b146924c2f19c6]::panic::unwind_safe::AssertUnwindSafe<std[929523f510218772]::thread::lifecycle::spawn_unchecked<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/panic.rs:359:14
[INFO] [stdout]   41:     0x585bccc7b102 - std[929523f510218772]::thread::lifecycle::spawn_unchecked::<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/thread/lifecycle.rs:68:26
[INFO] [stdout]   42:     0x585bccc7b102 - <std[929523f510218772]::thread::lifecycle::spawn_unchecked<test[6ec0502068880816]::run_test::{closure#1}, ()>::{closure#1} as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   43:     0x585bcce5ee8f - <alloc[95e62e727ddf147d]::boxed::Box<dyn core[28b146924c2f19c6]::ops::function::FnOnce<(), Output = ()> + core[28b146924c2f19c6]::marker::Send> as core[28b146924c2f19c6]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/alloc/src/boxed.rs:2277:9
[INFO] [stdout]   44:     0x585bcce5ee8f - <std[929523f510218772]::sys::thread::unix::Thread>::new::thread_start
[INFO] [stdout]                                at /rustc/cced03bfd61a304243a34504618ecec86c17063f/library/std/src/sys/thread/unix.rs:118:17
[INFO] [stdout]   45:     0x73fb52a49aa4 - <unknown>
[INFO] [stdout]   46:     0x73fb52ad6a64 - clone
[INFO] [stdout]   47:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     derive::ui
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 64 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 7.08s
[INFO] [stdout] 
[INFO] [stderr] error: test failed, to rerun pass `--test tests`
[INFO] running `Command { std: "docker" "inspect" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1", kill_on_drop: false }`
[INFO] [stdout] cb730c55507f6e8224b30d67e359de69db33a61ecacee6fc513142e8b3845cc1
